PDF4Java Reference Documentation
com.o2sol.pdf4java.graphics Package / PDFCanvas Class / drawStencilMask Method / drawStencilMask(PDFStencilMask,PDFBrush,double,double,double,double,double) Method
to draw.
that defines the characteristics of the stencil mask fill.
The x-coordinate of the upper-left corner of the drawn stencil mask.
The y-coordinate of the upper-left corner of the drawn stencil mask.
Width of the drawn stencil mask.
Height of the drawn stencil mask.
Rotation angle of the drawn stencil mask.
In This Topic
    drawStencilMask(PDFStencilMask,PDFBrush,double,double,double,double,double) Method
    In This Topic
    Draws the specified at the specified location and with the specified size.
    A stencil mask is a B/W image where the 1 pixels are left transparent and 0 pixels are filled with the brush.
    If width is zero or negative then width is automatically computed in order to keep the original aspect ratio. If height is zero or negative then height is automatically computed in order to keep the original aspect ratio. If both width and height are negative then the stencil mask is scaled automatically to fit the given area and the original aspect ratio is kept.
    Syntax
    public PDFSize drawStencilMask( 
       PDFStencilMask stencilMask,
       PDFBrush brush,
       double x,
       double y,
       double width,
       double height,
       double rotation
    )

    Parameters

    stencilMask
    to draw.
    brush
    that defines the characteristics of the stencil mask fill.
    x
    The x-coordinate of the upper-left corner of the drawn stencil mask.
    y
    The y-coordinate of the upper-left corner of the drawn stencil mask.
    width
    Width of the drawn stencil mask.
    height
    Height of the drawn stencil mask.
    rotation
    Rotation angle of the drawn stencil mask.

    Return Value

    The size of the drawn stencil mask.
    See Also